9d2f11321b8cfb693d47654f50e6cc2baf30a3ef,src/org/jgroups/protocols/FD_SOCK.java,FD_SOCK,setProperties,#Properties#,102
Before Change
// PropertyPermission not granted if running in an untrusted environment with JNLP.
try {
tmp=System.getProperty("bind.address");
if(Util.isBindAddressPropertyIgnored()) {
tmp=null;
}
}
catch (SecurityException ex){
}
if(tmp != null)
str=tmp;
else
str=props.getProperty("bind_addr");
if(str != null) {
try {
bind_addr=InetAddress.getByName(str);
After Change
props.remove("srv_sock_bind_addr");
}
boolean ignore_systemprops=Util.isBindAddressPropertyIgnored();
str=Util.getProperty(new String[]{Global.BIND_ADDR, Global.BIND_ADDR_OLD}, props, "bind_addr",
ignore_systemprops, null);
if(str != null) {
try {
bind_addr=InetAddress.getByName(str);